home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / UIDEMO / SCROLL / APPWIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-29  |  512 b   |  31 lines

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
  4. #define _appwin_h_
  5.  
  6.  
  7. #include "ui/dialog.h"
  8. #include "ui/scrolbar.h"
  9. #include "ui/label.h"
  10. #include "ui/toglbtn.h"
  11.  
  12. // ------------------------ Class AppWindow ---------------------------
  13.  
  14. class AppWindow: public UI_Dialog {
  15.  
  16. public:
  17.     AppWindow ();
  18.  
  19.     bool HandleChildEvent (const UI_Event& e);
  20.  
  21. protected:
  22.     UI_ToggleButton* _btn;
  23.     UI_Label*        _msg;
  24.     UI_ScrollBar*    _bar;
  25.  
  26.     bool           _DoScroll ();
  27.     
  28. };
  29.  
  30. #endif /* _appwin_h_ */
  31.